library(tidyverse)
library(lubridate)
library(tidyquant)
library(plotly)ProTip: When using TOC, make sure to start with H1 headers, whih are used to generate the TOC
source("01_Scripts/plot_sales.R")bike_orderlines_tbl <- read_rds("00_Data/bike_sales/data_wrangled/bike_orderlines.rds")interactive <- FALSEplot_total_sales(unit = "quarter", interactive = interactive)plot_total_sales(unit = "month", interactive = interactive)plot_total_sales(unit = "week", date_format = "%Y-%m-%d", interactive = interactive)plot_categories(category_1 = "Road",
ncol = 1,
unit = "quarter",
interactive = interactive)plot_categories(category_1 = "Road",
ncol = 1,
unit = "month",
interactive = interactive)plot_categories(category_1 = "Road",
ncol = 1,
unit = "week",
interactive = interactive)plot_categories(category_1 = "Mountain",
ncol = 1,
unit = "quarter",
interactive = interactive)plot_categories(category_1 = "Mountain",
ncol = 1,
unit = "month",
interactive = interactive)plot_categories(category_1 = "Mountain",
ncol = 1,
unit = "week",
interactive = interactive)